home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
codeco1a
/
frmaddin.frm
< prev
next >
Wrap
Text File
|
1999-06-26
|
31KB
|
995 lines
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmAddIn
BorderStyle = 3 'Fester Dialog
Caption = "Code Completer"
ClientHeight = 3600
ClientLeft = 2175
ClientTop = 2220
ClientWidth = 6030
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3600
ScaleWidth = 6030
ShowInTaskbar = 0 'False
StartUpPosition = 2 'Bildschirmmitte
Begin VB.CheckBox chkBottom
Caption = "Bottom"
Height = 375
Left = 3960
TabIndex = 8
Top = 420
Width = 795
End
Begin VB.CheckBox chkTop
Caption = "Top"
Height = 375
Left = 3960
TabIndex = 7
Top = 0
Width = 795
End
Begin VB.TextBox txtModErrHandling
Height = 555
Left = 0
MultiLine = -1 'True
TabIndex = 6
Text = "frmAddIn.frx":0000
Top = 3000
Width = 6015
End
Begin VB.TextBox txtBottom
Height = 1035
Left = 3960
MultiLine = -1 'True
TabIndex = 5
Text = "frmAddIn.frx":04A4
Top = 1920
Width = 2055
End
Begin VB.TextBox txtTop
Height = 1035
Left = 3960
MultiLine = -1 'True
TabIndex = 4
Text = "frmAddIn.frx":04AA
Top = 840
Width = 2055
End
Begin VB.TextBox txtCode
Height = 2955
Left = 1800
MultiLine = -1 'True
TabIndex = 3
Text = "frmAddIn.frx":04B0
Top = 0
Width = 2115
End
Begin MSComctlLib.TreeView tvComponents
Height = 2955
Left = 0
TabIndex = 2
Top = 0
Width = 1755
_ExtentX = 3096
_ExtentY = 5212
_Version = 393217
Indentation = 584
Style = 7
Checkboxes = -1 'True
Appearance = 1
End
Begin VB.CommandButton CancelButton
Caption = "&Abbrechen"
Height = 375
Left = 4800
TabIndex = 1
Top = 420
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "&OK"
Height = 375
Left = 4800
TabIndex = 0
Top = 0
Width = 1215
End
Begin VB.Menu mnuB
Caption = "Actions"
Begin VB.Menu mnuBInsertErrC
Caption = "Insert Err MsgBox"
Index = 0
End
Begin VB.Menu mnuBInsertErrC
Caption = "Insert Err.Raise"
Index = 1
End
Begin VB.Menu mnuBInsertErrC
Caption = "Insert Err.Raise MTS"
Index = 2
End
Begin VB.Menu mnuInsertErrConst
Caption = "Insert ErrConst for Member"
End
End
Begin VB.Menu mnuO
Caption = "Options"
Begin VB.Menu mnuOptResumeNextExit
Caption = "MsgResumeNextExit"
End
Begin VB.Menu mnuOptSetAbort
Caption = "Set Abort"
Checked = -1 'True
End
Begin VB.Menu mnuOptSetComplete
Caption = "Set Complete"
Checked = -1 'True
End
Begin VB.Menu mnuDelOthers
Caption = "Delete other ErrHandlers"
End
Begin VB.Menu mnuOptStatus
Caption = "gStatus"
Checked = -1 'True
End
End
Begin VB.Menu mnuInfo
Caption = "Info"
End
End
Attribute VB_Name = "frmAddIn"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' Code for frmAddin (form)
' By J.M.Goebel
' This Code is Freeware if you use this code to develop new Application
' it may only be distributed as Freeware!
' just paste this code into frmAddin after you created a new AddIn-Project
' when you start the program with full compile you will see which controls
' are missing.
' Controls starting with mnu... are Menus
' Controls starting with txt... are TextBoxes
' Controls starting with chk... are checkboxes
' all textboxes must be multiline!
' you have to paste the code of modErrHandling into txtModErrHanlding
' you can also edit the file of frmAddin and replace the part before the code
' with this (remove the ' before each line before) Ther will be an error because
' of the missing frx-file but you only have to paste the content of modErrHandling
' into the text of txtModErrHandling :
'Version 5#
'Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
'Begin VB.Form frmAddIn
' BorderStyle = 3 'Fester Dialog
' Caption = "Code Completer"
' ClientHeight = 3600
' ClientLeft = 2175
' ClientTop = 2220
' ClientWidth = 6030
' LinkTopic = "Form1"
' MaxButton = 0 'False
' MinButton = 0 'False
' ScaleHeight = 3600
' ScaleWidth = 6030
' ShowInTaskbar = 0 'False
' StartUpPosition = 2 'Bildschirmmitte
' Begin VB.CheckBox chkBottom
' Caption = "Bottom"
' Height = 375
' Left = 3960
' TabIndex = 8
' Top = 420
' Width = 795
' End
' Begin VB.CheckBox chkTop
' Caption = "Top"
' Height = 375
' Left = 3960
' TabIndex = 7
' Top = 0
' Width = 795
' End
' Begin VB.TextBox txtModErrHandling
' Height = 555
' Left = 0
' MultiLine = -1 'True
' TabIndex = 6
' Text = "frmAddIn.frx":0000
' Top = 3000
' Width = 6015
' End
' Begin VB.TextBox txtBottom
' Height = 1035
' Left = 3960
' MultiLine = -1 'True
' TabIndex = 5
' Text = "frmAddIn.frx":0293
' Top = 1920
' Width = 2055
' End
' Begin VB.TextBox txtTop
' Height = 1035
' Left = 3960
' MultiLine = -1 'True
' TabIndex = 4
' Text = "frmAddIn.frx":0299
' Top = 840
' Width = 2055
' End
' Begin VB.TextBox txtCode
' Height = 2955
' Left = 1800
' MultiLine = -1 'True
' TabIndex = 3
' Text = "frmAddIn.frx":029F
' Top = 0
' Width = 2115
' End
' Begin MSComctlLib.TreeView tvComponents
' Height = 2955
' Left = 0
' TabIndex = 2
' Top = 0
' Width = 1755
' _ExtentX = 3096
' _ExtentY = 5212
' _Version = 393217
' Indentation = 584
' Style = 7
' Checkboxes = -1 'True
' Appearance = 1
' End
' Begin VB.CommandButton CancelButton
' Caption = "&Abbrechen"
' Height = 375
' Left = 4800
' TabIndex = 1
' Top = 420
' Width = 1215
' End
' Begin VB.CommandButton OKButton
' Caption = "&OK"
' Height = 375
' Left = 4800
' TabIndex = 0
' Top = 0
' Width = 1215
' End
' Begin VB.Menu mnuB
' Caption = "Bearbeiten"
' Begin VB.Menu mnuBInsertErrC
' Caption = "Insert Err MsgBox"
' Index = 0
' End
' Begin VB.Menu mnuBInsertErrC
' Caption = "Insert Err.Raise"
' Index = 1
' End
' Begin VB.Menu mnuBInsertErrC
' Caption = "Insert Err.Raise MTS"
'